* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: #000000;
            color: #e4e4e7;
            min-height: 100vh;
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Navigation */
        .navigation {
            display: flex;
            gap: 2rem;
            justify-content: center;
            padding: 1.5rem 2rem;
            position: sticky;
            top: 0;
            backdrop-filter: blur(10px);
            z-index: 100;
        }

        .nav-link {
            color: #a1a1aa;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
            cursor: pointer;
        }

        .nav-link:hover {
            color: #e4e4e7;
        }

        .nav-link.active {
            color: #e4e4e7;
        }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            right: 0;
            height: 2px;
            background: #e4e4e7;
        }

        /* Page Container */
        .page {
            display: none;
            padding: 2rem;
        }

        .page.active {
            display: block;
        }

        /* Main Content */
        .container {
            max-width: 900px;
            margin: 0 auto;
        }

        h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

        .intro {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 1.5rem;
        }

        .intro strong {
            color: white;
            font-weight: 600;
        }

        /* Social Links */
        .social-links {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        /* Info Section */
        .info-section {
            margin-bottom: 1.5rem;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .info-icon {
            width: 18px;
            height: 18px;
            display: flex;
            align-items: center;
            flex-shrink: 0;
        }

        .info-icon svg {
            width: 100%;
            height: 100%;
        }

        /* Discord Profile Card */
        .discord-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 1.25rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            transition: all 0.3s;
        }

        .discord-card:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-2px);
        }

        .discord-avatar-container {
            position: relative;
        }

        .discord-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
        }

        .status-dot {
            position: absolute;
            bottom: 2px;
            right: 2px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            border: 3px solid #000000;
            z-index: 2;
        }

        .status-online { background: #43b581; }
        .status-idle { background: #faa61a; }
        .status-dnd { background: #f04747; }
        .status-offline { background: #747f8d; }

        .discord-info {
            flex: 1;
        }

        .discord-username {
            font-size: 1.05rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .discord-status {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
        }

        /* Activity Status */
        .activity-status {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 1.25rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .activity-icon {
            width: 48px;
            height: 48px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .activity-icon img {
            width: 100%;
            height: 100%;
            border-radius: 8px;
            object-fit: cover;
        }

        .activity-details {
            flex: 1;
            min-width: 0;
        }

        .activity-name {
            font-weight: 600;
            font-size: 0.95rem;
            margin-bottom: 0.25rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .activity-description {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .activity-time {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.5);
        }

        /* Spotify Card */
        .spotify-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 1.25rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            transition: all 0.3s;
            user-select: none;
        }

        .spotify-card:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-2px);
        }

        .spotify-card[style*="cursor: pointer"]:active {
            transform: translateY(0);
        }

        .album-art {
            width: 60px;
            height: 60px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.1);
        }

        .spotify-info {
            flex: 1;
        }

        .spotify-title {
            font-weight: 600;
            margin-bottom: 0.25rem;
            font-size: 0.95rem;
        }
        
        .spotify-title:hover {
            text-decoration: underline;
        }

        .spotify-artist {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
        }

        .spotify-label {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.5);
            display: flex;
            align-items: center;
            gap: 0.3rem;
            margin-bottom: 0.5rem;
        }

        .spotify-label svg {
            width: 14px;
            height: 14px;
            flex-shrink: 0;
        }

        .music-label {
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

        .spotify-status {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.85rem;
        }

        .loading {
            color: rgba(255, 255, 255, 0.5);
            font-style: italic;
        }

        .error {
            color: rgba(255, 100, 100, 0.8);
            font-size: 0.9rem;
        }

        /* Activity Indicator */
        .activity-indicator {
            display: inline-block;
            width: 8px;
            height: 8px;
            background: #1db954;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        /* About Page */
        .about-content {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 2rem;
            margin-top: 2.5rem;
            margin-bottom: 3rem;
            line-height: 1.8;
        }

        .about-content p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1rem;
            margin-bottom: 1rem;
        }

        .about-content p:last-child {
            margin-bottom: 0;
        }

        .tech-stack {
            margin-top: 3rem;
        }

        .tech-stack h2 {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #e4e4e7;
        }

        .tech-icons {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
            gap: 1.5rem;
        }

        .tech-icon {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            transition: all 0.3s;
            aspect-ratio: 1;
        }

        .tech-icon:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-5px);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .tech-icon img {
            width: 50px;
            height: 50px;
            object-fit: contain;
        }

        /* Projects Page */
        .projects-container {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .project-card {
            display: grid;
            grid-template-columns: 350px 1fr;
            gap: 2rem;
            align-items: start;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 1.5rem;
            transition: all 0.3s;
        }

        .project-card:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-2px);
        }

        .project-preview {
            border: .05px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            height: 280px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }

        .project-preview img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
        }

        .project-info {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .project-title {
            font-size: 2rem;
            font-weight: 700;
            margin: 0;
        }

        .project-description {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        @media (max-width: 968px) {
            .project-card {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .project-preview {
                height: 200px;
            }
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }

            .navigation {
                gap: 1rem;
                padding: 1rem;
            }

            .discord-card, .spotify-card, .activity-status {
                flex-direction: column;
                text-align: center;
            }

            .container {
                padding: 1rem;
            }

            .tech-icons {
                grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
            }
        }